Skip to main content

Folder Structure

It is equally important that we understand the files and folder present in the generated project and know how the control flows.

package.json

Contains all the dependencies required for the project. Our next.js project has 3 dependencies ( next, react, react-dom ) and 2 devDependencies (eslint, eslint-config-next)

info

eslint will help you lint your code or in simpler words it will help highlight errors and warnings in your code. Click here to know more.